    .herosec-section {
        position: relative;
        min-height: 100vh;
        overflow: hidden;
        padding: 100px 0 50px;
        background: linear-gradient(-45deg, #6a11cb, #2575fc, #ff6a00, #ffcc00);
        background-size: 400% 400%;
        animation: herosec-gradient 15s ease infinite;
    }

    @keyframes herosec-gradient {
        0% {
            background-position: 0% 50%;
        }

        50% {
            background-position: 100% 50%;
        }

        100% {
            background-position: 0% 50%;
        }
    }

    #herosec-bg-network {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

    .herosec-container {
        position: relative;
        z-index: 1;
        max-width: 1200px;
        margin: auto;
        color: #fff;
    }

    .herosec-title {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .herosec-subtitle {
        font-size: 1.5rem;
        margin-bottom: 15px;
        opacity: 0.85;
    }

    .herosec-description {
        font-size: 1rem;
        opacity: 0.9;
    }

    .herosec-services .herosec-service-card {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        padding: 20px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
        text-align: center;
        cursor: pointer;
        color: #fff;
    }

    .herosec-services .herosec-service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        background: rgba(255, 255, 255, 0.2);
    }

    .herosec-services .herosec-service-card i {
        font-size: 2rem;
        margin-bottom: 10px;
        display: block;
    }

    .herosec-services .herosec-service-card span {
        font-weight: 600;
    }

    .herosec-cta-btn {
        background: #fff;
        color: #2575fc;
        font-weight: 600;
        padding: 12px 40px;
        border-radius: 50px;
        transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
    }

    .herosec-cta-btn:hover {
        background: #2575fc;
        color: #fff;
        transform: scale(1.05);
    }